home *** CD-ROM | disk | FTP | other *** search
- /**************************************************************************/
- /* QueryIB.ucwx */
- /* */
- /* Copyright ©1998 by Dick Whiting */
- /* */
- /*------------------------------------------------------------------------*/
- /* Used with UrbCedWWW for getting an IBrowse title or URL */
- /**************************************************************************/
- /*
- $VER: 1.0 Copyright ©1998 by Dick Whiting
- */
-
- portname='IBROWSE'
-
- options results
- Address CYGNUSED
-
- arg type
-
- if type='' then type='URL'
-
- 'STATUS INSERTMODE'
- ison=result
-
- if ~ison then 'INSERT MODE'
-
- if ~show(p,portname) then do
- 'OKAY1' 'IBrowse port not found'
- exit
- end
-
- Address 'IBROWSE' 'QUERY 'type
- title=result
-
- if title='' or title='RESULT' then do
- 'OKAY1' 'Title not found'
- exit
- end
-
- 'TEXT' title
- 'CEDTOFRONT'
-
- exit
-
-